home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / wil4c10.zip / ASYNC.H < prev    next >
Text File  |  1997-07-26  |  669b  |  22 lines

  1. /* ASYNC.H */
  2.  
  3. #define ASYNC_NONE           0
  4. #define ASYNC_SINGLE_LINE    1
  5. #define ASYNC_MULTIPLE_LINES 2
  6. #define ASYNC_SINGLE_CODED   3
  7. #define ASYNC_MULTIPLE_CODED 4
  8. #define ASYNC_PLUS_MINUS     5
  9.  
  10. #define POST_MSG(m) PostMessage(hMainWnd,WM_USER+1,(m),0)
  11. #define POST_PARM(m,p) PostMessage(hMainWnd,WM_USER+1,(m),(p))
  12.  
  13. SOCKET AsyncConnect(HWND,LPSTR,LPSTR,int,int,int,int);
  14. int AsyncRead(int,int,int);
  15. int AsyncWrite(LPSTR,int,int);
  16. int AsyncCommand(LPSTR,int,int,int);
  17. LPSTR AsyncGetBufPtr(void);
  18. int AsyncProcessMsg(LONG);
  19. int AsyncSetEcho(int);
  20. int AsyncSetDebug(int);
  21.  
  22.